[...pageid].vue 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. <script setup lang="ts">
  2. useHead({
  3. title: `Sponsors — Hush Your Money`,
  4. meta: [
  5. { name: 'description', content: `Hush Your Money makes spending safu.` }
  6. ],
  7. })
  8. /* Initialize stores. */
  9. import { useSystemStore } from '@/stores/system'
  10. const System = useSystemStore()
  11. const route = useRoute()
  12. console.log('ROUTE', route)
  13. const networkid = route?.params?.pageid[0]
  14. console.log('NETWORK ID', networkid)
  15. const campaignid = route?.params?.pageid[1]
  16. console.log('CAMPAIGN ID', campaignid)
  17. // onMounted(() => {
  18. // console.log('Mounted!')
  19. // // Now it's safe to perform setup operations.
  20. // })
  21. // onBeforeUnmount(() => {
  22. // console.log('Before Unmount!')
  23. // // Now is the time to perform all cleanup operations.
  24. // })
  25. </script>
  26. <template>
  27. <main class="max-w-5xl mx-auto py-5 flex flex-col gap-4">
  28. <h1 class="text-5xl font-medium">
  29. Sponsors — {{ networkid }} — {{ campaignid }}
  30. </h1>
  31. <section class="flex flex-col gap-4">
  32. <h2 class="text-rose-500 text-2xl font-bold uppercase">
  33. Do Not Send From ANY Exchange
  34. </h2>
  35. <p>
  36. Rewards tokens, ie $HUSH, will be sent directly to Sponsors point of delivery.
  37. In order to GUARANTEE receipt of ALL rewards, please send from a Wallet/Address that you HOLD THE KEYS.
  38. </p>
  39. </section>
  40. <section>
  41. <p>
  42. For every 6 $HUSH tokens airdropped:
  43. <ol class="py-5 pl-10 list-disc">
  44. <li>Round 1 Sponsors will receive 3x $HUSH</li>
  45. <li>Round 2 Sponsors will receive 2x $HUSH</li>
  46. <li>Round 3 Sponsors will receive 1x $HUSH</li>
  47. </ol>
  48. </p>
  49. </section>
  50. <p>
  51. Lorem, ipsum dolor sit amet consectetur adipisicing elit. Id eius voluptatem minus natus at eveniet dolorum eos mollitia, maxime animi excepturi harum omnis illum odit recusandae pariatur! Unde, explicabo molestias.
  52. </p>
  53. <section>
  54. <h2>
  55. Bitcoin Seekers Round 1
  56. </h2>
  57. <h3>
  58. 3FDveRn9A2cdqJqy7LDQu48crEfYLJhYDV
  59. </h3>
  60. </section>
  61. <section>
  62. <h2>
  63. Bitcoin Cash Seekers Round 1
  64. </h2>
  65. <h3>
  66. qzdyw35wslfrk6qjrcva2ujzkwv5a6ufl5uhg5xjkg
  67. </h3>
  68. </section>
  69. <section>
  70. <h2>
  71. Nexa Seekers Round 1
  72. </h2>
  73. <h3>
  74. nexa:XXX
  75. </h3>
  76. </section>
  77. </main>
  78. </template>